﻿#TUTORIAL: Here you can choose a namespace, which is basically going to be a text title next to the event id for every event you create
#TUTORIAL: Replace tutorial_events
namespace = snori_C_events


snori_C_events.1 = {

	#TUTORIAL: Do not change
	type = country_event
	
	#TUTORIAL: Here you can choose what video is going to play when the event fires
	#TUTORIAL: Look at the videos in gfx/event_pictures and decide your pick
	event_image = {
		video = "gfx/event_pictures/europenorthamerica_capitalists_meeting.bk2"
	}

	#TUTORIAL: Do not change
	on_created_soundeffect = "event:/SFX/UI/Alerts/event_appear"
	
	#TUTORIAL: Here you need to select what sound effect is going to play when the event fires
	#TUTORIAL: I suggest you look at vanilla events and take sound effects from them, that's what i do because a sound events folder does not exist
	on_opened_soundeffect = "event:/SFX/Events/unspecific/world_fair"

	#TUTORIAL: Here you can choose the icon of your event
	#TUTORIAL: See gfx/interface/icons/event_icons for the icons
	icon = "gfx/interface/icons/event_icons/event_portrait.dds"

	#TUTORIAL: Make sure to change tutorial_events to the namespace you chose, the number is the event ID of your choosing as well
	title = snori_C_events.1.t
	desc = snori_C_events.1.d
	flavor = snori_C_events.1.f

	#TUTORIAL: Do not change
	duration = 3

	trigger = {
		#TUTORIAL: We are triggering this event from a decision, so we do not need to fill out trigger
		#TUTORIAL: However, you can always use automatic triggers, i suggest you look at vanilla events and see what triggers they use
	}

	option = {
	
		#TUTORIAL: Make sure to change tutorial_events to the namespace you chose
		name = snori_C_events.1.a
		
		#TUTORIAL: If you're making multiple options, then you must enable this code and choose which option do you want the AI to pick
		#default_option = yes
		
		#TUTORIAL: And now we write the effects of the decision, for the moment i want to add a permanent modifier that gives %20 education access
		#TUTORIAL: This permanent modifier was made by us in the Modifiers Tutorial, check it out
		add_modifier = {
            name = snori_kor_clothes_modifier
			
            months = -1
        }
		
		
	}
}
